From 931b25f230033be2d160202cb862ecfd17b06540 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Tue, 15 Dec 1998 03:37:32 +0000 Subject: [PATCH] include -lintl in LIBS --- config.h.in | 3 +++ configure.in | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/config.h.in b/config.h.in index 3934b879a2..4f4eef8f58 100644 --- a/config.h.in +++ b/config.h.in @@ -161,3 +161,6 @@ /* Define if you have the i library (-li). */ #undef HAVE_LIBI + +/* Define if you have the intl library (-lintl). */ +#undef HAVE_LIBINTL diff --git a/configure.in b/configure.in index 284ac3ac4d..0b0c7688c8 100644 --- a/configure.in +++ b/configure.in @@ -132,6 +132,10 @@ AC_SUBST(REBUILD) # i18n stuff ALL_LINGUAS="de pt" AM_GNU_GETTEXT +AC_CHECK_FUNC(gettext, + , + AC_CHECK_LIB(intl, gettext) +) dnl The DU4 header files don't provide library prototypes unless dnl -std1 is given to the native cc. -- 2.30.2